// ==UserScript== // @name Youtube Auto show transcript 油管默认打开文稿 // @namespace https://bbs.tampermonkey.net.cn/ // @version 0.1.1 // @description 省的我去点那个“内容转文字” // @author You // @match https://www.youtube.com/watch** // ==/UserScript== window.addEventListener('yt-page-data-updated', function () { const element = document.querySelector('ytd-engagement-panel-section-list-renderer[target-id="engagement-panel-searchable-transcript"]') if (element) { element.setAttribute('visibility', 'ENGAGEMENT_PANEL_VISIBILITY_EXPANDED'); } });